home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
shftrels.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
935b
|
22 lines
/* RCSVER $Id: shftrels.sql,v 1.1 1999-02-25 14:56:05-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: shftrels.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the shftrels table. shftrels contains information
* from the relief start shift farebox record.
* Changes:
************************************************************************* */
CREATE TABLE shftrels
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_shftrels REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
shift_seq NUMBER(38), /* Shift sequence number */
user_id NUMBER(38), /* ID of operator */
CONSTRAINT pk_shftrels PRIMARY KEY (det_seq_num)
);